     body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
			background-color: black;
        	color: white;
        }
        header {
   
            color: #fff;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .headshot {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid #fff;
            margin-bottom: 20px;
        }
        h1, h2 {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
        }
        h1 {
            font-size: 36px;
        }
        h2 {
            font-size: 24px;
        }

        /* CSS to make linked text yellow */
        a {
            color: yellow;
        }
    
        nav {
            background-color: #1a1a1a;
            text-align: center;
            padding: 25px 0;
        }
        nav a {
            text-decoration: none;
            color: #FF6;
            padding: 5px 1px;
            margin: 0 1px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: #333;
        }
        section {
            padding: 30px 20px;
        }
        section h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        section p {
            font-size: 18px;
            line-height: 1.6;
        }
        footer {
            background-color: #222;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
			font-size: 12px;
        }
       .linespecing1-5 {
           line-height: 1.5; 
        }	
        .smaller-text {
           font-size: smaller;
           line-height: 1;     
        }
		figure {
            text-align: left;
        }    
